Make the GTK_TOOLTIP and GTK_IS_TOOLTIP macros public.
authorJohan Dahlin <jdahlin@async.com.br>
Mon, 9 Jul 2007 17:24:24 +0000 (17:24 +0000)
committerJohan Dahlin <johan@src.gnome.org>
Mon, 9 Jul 2007 17:24:24 +0000 (17:24 +0000)
2007-07-09  Johan Dahlin  <jdahlin@async.com.br>

    * gtk/gtktooltip.c:
    * gtk/gtktooltip.h: Make the GTK_TOOLTIP and GTK_IS_TOOLTIP macros public.

svn path=/trunk/; revision=18410

ChangeLog
gtk/gtktooltip.c
gtk/gtktooltip.h

index d98a416d6fbf39ec22b7a3b76b3fbae2388e9eb1..be27e793aa861edd55a10a6e38cee5b2a111c56b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-07-09  Johan Dahlin  <jdahlin@async.com.br>
+
+       * gtk/gtktooltip.c:
+       * gtk/gtktooltip.h: Make the GTK_TOOLTIP and GTK_IS_TOOLTIP macros public.
+
 2007-07-09  Johan Dahlin,,,  <jdahlin@lozenge>
 
        * demos/gtk-demo/demo.ui:
index e32b15024f35252bae43da59f8fc1ceb49e492e4..e77d60ced8d84efe5c4b0a9d783eeaaf8357f628 100644 (file)
@@ -34,9 +34,7 @@
 #include <string.h>
 
 
-#define GTK_TOOLTIP(obj)                 (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_TOOLTIP, GtkTooltip))
 #define GTK_TOOLTIP_CLASS(klass)         (G_TYPE_CHECK_CLASS_CAST ((klass), GTK_TYPE_TOOLTIP, GtkTooltipClass))
-#define GTK_IS_TOOLTIP(obj)              (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_TOOLTIP))
 #define GTK_IS_TOOLTIP_CLASS(klass)      (G_TYPE_CHECK_CLASS_TYPE ((klass), GTK_TYPE_TOOLTIP))
 #define GTK_TOOLTIP_GET_CLASS(obj)       (G_TYPE_INSTANCE_GET_CLASS ((obj), GTK_TYPE_TOOLTIP, GtkTooltipClass))
 
index 466074fb580d40374dcad9166c494949bb562695..eb9ff41f56a93652d1e8ae92a37ee342a3d4a738 100644 (file)
@@ -28,6 +28,8 @@
 G_BEGIN_DECLS
 
 #define GTK_TYPE_TOOLTIP                 (gtk_tooltip_get_type ())
+#define GTK_TOOLTIP(obj)                 (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_TOOLTIP, GtkTooltip))
+#define GTK_IS_TOOLTIP(obj)              (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_TOOLTIP))
 
 GType gtk_tooltip_get_type (void);